home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
programming
/
muirexx2.1
/
demos
/
muirexxbuild
/
change_object.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-07-23
|
449b
|
22 lines
/* */
options results
parse arg obj
/* Attribute TAG ID definitions */
List_Active = 0x8042391c /* V4 isg LONG */
address BUILD
list ID DLST ATTRS List_Active
dpos = result
list ID DLST POS dpos
line = delword(result,2,1)
if line ~= '' then do
npos = wordindex(line,2)-1
if npos > 0 then line = insert(obj' ',line,wordindex(line,2)-1)
else line = line||obj
call 'build:ask_object' line
end
exit